home *** CD-ROM | disk | FTP | other *** search
/ kermit.columbia.edu / kermit.columbia.edu.tar / kermit.columbia.edu / newsgroups / misc.19960209-19960425 / 000290_news@columbia.edu _Thu Mar 28 17:50:57 1996.msg < prev    next >
Internet Message Format  |  1996-05-13  |  2KB

  1. Return-Path: news@columbia.edu
  2. Received: from apakabar.cc.columbia.edu (apakabar.cc.columbia.edu [128.59.35.159]) by watsun.cc.columbia.edu (8.7.3/8.7.3) with ESMTP id RAA05923 for <kermit.misc@watsun>; Thu, 28 Mar 1996 17:50:56 -0500 (EST)
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.7.3/8.7.3) id RAA16588 for kermit.misc@watsun; Thu, 28 Mar 1996 17:50:55 -0500 (EST)
  4. Path: news.columbia.edu!panix!news.denver.eti.net!imci5!pull-feed.internetmci.com!news.internetMCI.com!newsfeed.internetmci.com!howland.reston.ans.net!news.starnet.net!usenet
  5. From: andyc@andyc.carenet.org (Andy Carlson)
  6. Newsgroups: comp.os.os2.comm,comp.protocols.kermit.misc
  7. Subject: Re: C-Kermit (OS/2): Auto-Exit?
  8. Date: 28 Mar 1996 21:23:09 GMT
  9. Organization: Barnes Jewish Christian Health Services Inc.
  10. Lines: 38
  11. Message-ID: <4jevvt$6gu@news.starnet.net>
  12. References: <4jd6ru$asl@siberia.gtri.gatech.edu>
  13. Reply-To: andyc@andyc.carenet.org (Andy Carlson)
  14. NNTP-Posting-Host: andyc.carenet.org
  15. X-Newsreader: IBM NewsReader/2 v1.2.5
  16. Xref: news.columbia.edu comp.os.os2.comm:6148 comp.protocols.kermit.misc:4962
  17.  
  18. In <4jd6ru$asl@siberia.gtri.gatech.edu>, rhoward@matd.gatech.edu (Robert L. Howard) writes:
  19. >What I would like is to have a program object for a given host such 
  20. >that C-Kermit immediately jumps to the telnet session *and* then
  21. >after I logout from the remote host have Kermit quit by itself.
  22. >
  23.  
  24. Heres what I do using a REXX command procedure:
  25.  
  26. extproc c:\ckermit\ckermit.exe
  27. set network tcp/ip
  28. set telnet term vt220
  29. set key \585 \2  
  30. set key \593 \6  
  31. set key \304 \27\118
  32. set key \289 \22
  33. set key \644 \Kupscn
  34. set key \630 \Kdnscn
  35. set key \409 \Kupone
  36. set key \417 \Kdnone
  37. open read c:\batch\password
  38. read \%p
  39. set host spectrum.carenet.org
  40. in 5 login:
  41. out ts55428\13
  42. in 5 Password:
  43. out \%p\13
  44. connect
  45. exit
  46.  
  47.  
  48. This connects, logs in, and closes the window when I exit from the 
  49. machine.
  50.  
  51.  Andy Carlson           email: andyc@andyc.carenet.org
  52.  BJC Health System      http://bjc.carenet.org/~ts55428
  53.  Get the RASFWRJ Mini FAQ by mailing to rasfwrj@bjc.carenet.org
  54.  Get the Robert Jordan WoT FAQ by mailing to jordan@bjc.carenet.org
  55.